home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’95 / What's On My Mac / DebugUtil.c < prev    next >
Text File  |  1995-06-24  |  145b  |  12 lines

  1.  
  2. #include "DebugUtil.h"
  3.  
  4. void
  5. my_assert ( Boolean passed, const char *theString )
  6. {
  7.     if ( !passed )
  8.     {
  9.         DebugStr ( (StringPtr)theString );
  10.     }
  11. }
  12.